home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-256.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  85 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12334);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2002-1344");
  13.  
  14.  name["english"] = "RHSA-2002-256: wget";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   The wget packages shipped with Red Hat Linux Advanced Server 2.1 contain a
  21.   security bug which, under certain circumstances, can cause local files to
  22.   be written outside the download directory.
  23.  
  24.   [Updated 09 Jan 2003]
  25.   Added fixed packages for the Itanium (IA64) architecture.
  26.  
  27.   [Updated 06 Feb 2003]
  28.   Added fixed packages for Advanced Workstation 2.1
  29.  
  30.   Versions of wget prior to 1.8.2-4 contain a bug that permits a malicious
  31.   FTP server to create or overwrite files anywhere on the local file system.
  32.  
  33.   FTP clients must check to see if an FTP server\'s response to the NLST
  34.   command includes any directory information along with the list of filenames
  35.   required by the FTP protocol (RFC 959, section 4.1.3).
  36.  
  37.   If the FTP client fails to do so, a malicious FTP server can send filenames
  38.   beginning with \'/\' or containing \'/../\' which can be used to direct a
  39.   vulnerable FTP client to write files (such as .forward, .rhosts, .shost,
  40.   etc.) that can then be used for later attacks against the client machine.
  41.  
  42.   All users of wget should upgrade to the errata packages which are not
  43.   vulnerable to this issue.
  44.  
  45.   Thanks to Steven M. Christey for his work in discovering this issue
  46.   in current FTP clients and for providing a patched FTP server to verify
  47.   the new packages.
  48.  
  49.  
  50.  
  51.  
  52. Solution : http://rhn.redhat.com/errata/RHSA-2002-256.html
  53. Risk factor : High';
  54.  
  55.  script_description(english:desc["english"]);
  56.  
  57.  summary["english"] = "Check for the version of the wget packages";
  58.  script_summary(english:summary["english"]);
  59.  
  60.  script_category(ACT_GATHER_INFO);
  61.  
  62.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  63.  family["english"] = "Red Hat Local Security Checks";
  64.  script_family(english:family["english"]);
  65.  
  66.  script_dependencies("ssh_get_info.nasl");
  67.  
  68.  script_require_keys("Host/RedHat/rpm-list");
  69.  exit(0);
  70. }
  71.  
  72. include("rpm.inc");
  73. if ( rpm_check( reference:"wget-1.8.2-4.72", release:"RHEL2.1") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78.  
  79. if ( rpm_exists(rpm:"wget-", release:"RHEL2.1") )
  80. {
  81.  set_kb_item(name:"CAN-2002-1344", value:TRUE);
  82. }
  83.  
  84. set_kb_item(name:"RHSA-2002-256", value:TRUE);
  85.